home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / receipt / reciept.bas < prev    next >
BASIC Source File  |  1993-07-21  |  612b  |  27 lines

  1. ' COPYRIGHT:
  2. '
  3. '   (C) Copyright Microsoft Corp. 1993.  All rights reserved.
  4. '
  5. '   You have a royalty-free right to use, modify, reproduce and
  6. '   distribute the Sample Files (and/or any modified version) in
  7. '   any way you find useful, provided that you agree that
  8. '   Microsoft has no warranty obligations or liability for any
  9. '   Sample Application Files which are modified.
  10. '
  11. Type InfoType
  12.    Info As String * 40
  13.    Price As Single
  14.    Unit As String * 3
  15. End Type
  16.  
  17. Global ItemInfo(11) As InfoType
  18.  
  19. Global Const MAXITEMS = 25
  20.  
  21. Global NumItems As Integer
  22.  
  23. Global SalesTax As Single
  24.  
  25.  
  26.  
  27.